home *** CD-ROM | disk | FTP | other *** search
/ Celestin Apprentice 2 / Apprentice-Release2.iso / Source Code / C / Utilities / byacc 1.8.2 / test / error.y < prev    next >
Encoding:
Text File  |  1993-02-04  |  117 b   |  7 lines  |  [TEXT/R*ch]

  1. %%
  2. S: error
  3. %%
  4. main(){printf("yyparse() = %d\n",yyparse());}
  5. yylex(){return-1;}
  6. yyerror(s)char*s;{printf("%s\n",s);}
  7.